home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 22
/
freelog 22.iso
/
Prog
/
Djgpp
/
GPC2952B.ZIP
/
doc
/
gpc
/
docdemos
/
allmodule.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-02-09
|
294 b
|
24 lines
module AllModule interface;
export
AllInterface = all; { Same as `AllInterface = (a, b, Bar);' }
var
a, b: Integer;
procedure Bar (i: Integer);
end.
module AllModule implementation;
procedure Bar (i: Integer);
begin
b := a
end;
to begin do
a := 42;
end.